home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / bin / pm-is-supported < prev    next >
Text File  |  2009-10-06  |  981b  |  36 lines

  1. #!/bin/sh
  2. #
  3. # Copyright 2007 Red Hat, Inc.
  4. #
  5. # This program is free software; you can redistribute it and/or modify
  6. # it under the terms of version 2 of the GNU General Public License as
  7. # published by the Free Software Foundation.
  8. #
  9. # This program is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. # GNU General Public License for more details.
  13. #
  14. # You should have received a copy of the GNU General Public License
  15. # along with this program; if not, write to the Free Software
  16. # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  17. #
  18.  
  19. . "/usr/lib/pm-utils/pm-functions"
  20.  
  21. help_options()
  22. {
  23.     echo "pm-is-supported [--suspend | --hibernate | --suspend-hybrid ]"
  24.     echo
  25. }
  26.  
  27. ARG="$(echo ${1#--}|tr - _)"
  28.  
  29. case "$ARG" in
  30.     suspend|hibernate|suspend_hybrid)
  31.         "check_$ARG" ;;
  32.     help)     help_options ;;
  33.     *)     help_options 1>&2
  34.         exit 1 ;;
  35. esac
  36.